home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
Issue44
/
system
/
Peeker.dpr
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1999-02-24
|
195 b
|
14 lines
program Peeker;
uses
Forms,
UMain in 'UMain.pas' {PeekForm};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TPeekForm, PeekForm);
Application.Run;
end.